home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / COMPINT.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-09  |  285 b   |  14 lines

  1. // math.lib function compound_int()
  2. #include <stdio.h>
  3. #include <math.h>
  4.  
  5. void compound_int(double prin,double rate,int number)
  6. {
  7.     int year;
  8.     double amount;
  9.  
  10.     for (year=1;year<=number;year++) {
  11.     amount = prin * pow(1 + rate, year);
  12.     printf("%4d%21.2f\n",year,amount);
  13.     }
  14. }